```dart{4} @override Widget build(BuildContext context) { return Authenticator( initialStep: AuthenticatorStep.resetPassword, child: MaterialApp( builder: Authenticator.builder(), home: const Scaffold( body: Center( child: Text('You are logged in!'), ), ), ), ); } ```